home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr14 / dndprogs.zip / MEG < prev    next >
Text File  |  1993-04-01  |  34KB  |  3,010 lines

  1.  
  2.  
  3.    Monster Encounter Generator for use with GW-Basic
  4.        By Jim Vassilakos  <jimv@ucrmath.ucr.edu>
  5.    Public Domain: Molest @ Will   *   September 1991
  6.  
  7.  
  8. 1. Introduction
  9.  
  10. Several interesting programs have recently been posted to RGF
  11. by a variety of folks more computer competent than myself.
  12. Nevertheless, I'm gonna throw in yet another for those of
  13. you who aren't too ashamed of Basic and who have access to
  14. a computer with GW-Basic. The program is called MEG.BAS (Monster
  15. Encounter Generator), and it's mainly for use with AD&Dv1.
  16. The general idea is that you type the name of a monster that
  17. it recognizes, and it outputs various things to help you run
  18. the encounter.
  19.  
  20. The program was written in GW-Basic 3.20 on an IBM-PC compatible.
  21. I suspect that it will run using PC Basic and Basica as well
  22. as with various other versions of GW-Basic, but until you try it,
  23. who really knows?
  24.  
  25. The program relies on an ASCII data file from which it reads
  26. the information it knows about various monsters. This "monster
  27. file" (mfile.a) currently contains over two hundred monsters
  28. gleaned from the pages of the Monster Manuals and Folio. The
  29. program is public domain, so feel free to use it however you
  30. see fit. To find out how it works, just type "help" at the
  31. first prompt, and you should be able to figure things out from
  32. there.
  33.  
  34. All comments, etc. are welcome. If you need help getting it
  35. set-up, just send me email, and I'll help if I can.
  36.  
  37.  
  38. 2. Sample Runs
  39.  
  40. The following are two sample runs just to illustrate what
  41. the program does before you go to the trouble to get it
  42. working on your computer. The first shows you the output
  43. of an encounter with the dreaded "Purple Worm".
  44.  
  45.  
  46. Monster: Purple Worm
  47. Ref: MM1 p80
  48. Thaco: 8
  49. AC: 6
  50. D/A: 2d12 2d4
  51.  
  52. # 1    HP = 73   XP = 6360     # 2    HP = 72   XP = 6340
  53.  
  54. Total XP = 12700 
  55.  
  56. Treasure...
  57.  
  58. gold: 2000 
  59. gems: 6 
  60.  
  61. gem values:  100  50  100  50  50  500 = 850 
  62.  
  63. grand total value (excluding magic): 2850 gp
  64. XP+XP(TT) = 15550 
  65.  
  66. Maps and Magic
  67.  
  68. Potions: 1 
  69. Miscellaneous Magic: 1 
  70.  
  71.  
  72.  
  73. This next example shows you how to skip the monster
  74. encounter all together and get straight to treasure
  75. generation if that's what you're interested in. In this
  76. example, the user is generating treasure for a Red Dragon,
  77. treasure types H, S, & T.
  78.  
  79.  
  80. Monster: $hst
  81.  
  82. Treasure...
  83.  
  84. electrum: 25000 
  85. gold: 31000 
  86. gems: 56 
  87. jewelry: 25 
  88.  
  89. gem values:  500  50  1000  10  50  50  50  5000  10  50 
  90.              100  500  50  10  500  10  50  10  50  50 
  91.              100  100  1000  50  500  50  100  50  500 
  92.              500  500  1000  10  500  50  10  500  50 
  93.              10  100  100  500  10  500  100  100  100 
  94.              50  100  1000  500  10  10  10  50  500 = 17420 
  95.  
  96. jewelry values:  300  3000  1700  4000  5000  8000  1200 
  97.                  1000  6000  200  700  7000  1400  5000 
  98.                  8000  1500  1000  6000  2000  3000  2100 
  99.                  1200  1300  700  5000 = 76300 
  100.  
  101. grand total value (excluding magic): 137220 gp
  102.  
  103. Maps and Magic
  104.  
  105. Potions: 3 
  106.  
  107.  
  108. 3. GW-Basic code for MEG.BAS
  109.  
  110. What follows in this section is the code for the
  111. program itself. Feel free to modify it as you feel
  112. best suits your game.
  113.  
  114. 3 DIM D(27,8,4)
  115. 4 DIM T(17)
  116. 5 DIM G(7,3)
  117. 6 DIM J(8,5)
  118. 7 DIM MP(27)
  119. 8 DIM EX(15)
  120. 9 RANDOMIZE INT(TIMER/2)
  121. 10 KEY OFF:CLS
  122. 20 PRINT"Monster Encounter Generator for use with GW-Basic"
  123. 30 PRINT"    By Jim Vassilakos  <jimv@ucrmath.ucr.edu>"
  124. 35 PRINT"Public Domain: Molest @ Will   *   September 1991"
  125. 36 GOSUB 1100
  126. 40 PRINT
  127. 50 INPUT"Monster: ",M$
  128. 55 IF LEFT$(M$,1)<>"$"GOTO 60
  129. 57 TT$=RIGHT$(M$,LEN(M$)-1)
  130. 58 GOSUB 1200
  131. 59 GOTO 40
  132. 60 IF M$="help" GOTO 500
  133. 70 IF M$="list" GOTO 600
  134. 80 IF M$="more help" GOTO 1000
  135. 90 IF M$="end" GOTO 9998
  136. 100 REM Find
  137. 110 OPEN "i",1,"mfile.a"
  138. 120 INPUT#1,N$
  139. 130 IF M$=N$ GOTO 200
  140. 140 INPUT#1,Z$,Z$,Z$,Z$,Z$,Z$,Z$,Z$
  141. 150 IF EOF(1)=-1 GOTO 400
  142. 160 GOTO 120
  143. 200 REM Found
  144. 210 INPUT#1,RE$,NA$,TT$,TH$,AC$,DA$,H$,X$
  145. 220 CLOSE
  146. 230 REM print the basics
  147. 232 PRINT"Ref: "RE$
  148. 235 PRINT"Thaco: "TH$
  149. 240 PRINT"AC: "AC$
  150. 245 PRINT"D/A: "DA$
  151. 246 IF INSTR(TT$,"+")=0 GOTO 250
  152. 247 PRINT"Ind-TT: "RIGHT$(TT$,LEN(TT$)-INSTR(TT$,"+"))
  153. 248 TT$=LEFT$(TT$,INSTR(TT$,"+")-1)
  154. 250 REM Interpret Range Vaules
  155. 255 Z8$=NA$:GOSUB 700
  156. 260 N1=Z5:N2=Z6:N3=Z7
  157. 265 Z8$=H$:GOSUB 700
  158. 270 H1=Z5:H2=Z6:H3=Z7
  159. 275 Z1=N1:Z2=N2:Z3=N3:GOSUB 800
  160. 280 N=Z8
  161. 285 Z5=INSTR(X$,"+")
  162. 290 Z6=INSTR(X$,"/")
  163. 295 X1=VAL(LEFT$(X$,Z5-1))
  164. 298 X2=VAL(MID$(X$,Z5+1,Z6-Z5-1))
  165. 300 REM Output
  166. 305 PRINT
  167. 310 FOR Z7=1 TO N
  168. 315 Z1=H1:Z2=H2:Z3=H3:GOSUB 800
  169. 320 ZH=Z8
  170. 325 ZX=X1+(X2*ZH)
  171. 330 ZY=ZY+ZX
  172. 332 IF Z7 MOD 2 = 0 GOTO 336
  173. 333 PRINT TAB(1)"#"Z7;TAB(8)"HP ="ZH;TAB(18)"XP ="ZX;
  174. 334 IF Z7=N THEN PRINT
  175. 335 GOTO 340
  176. 336 PRINT TAB(32)"#"Z7;TAB(39)"HP ="ZH;TAB(49)"XP ="ZX
  177. 340 NEXT Z7
  178. 345 PRINT:PRINT"Total XP ="ZY
  179. 350 GOSUB 1200
  180. 395 ZY=0:GOTO 40
  181. 400 REM No Found
  182. 410 CLOSE
  183. 420 PRINT"There be no such creature, at least according to"
  184. 430 PRINT"this lame program. Try try again..."
  185. 440 GOTO 40
  186. 500 REM Help
  187. 505 PRINT
  188. 510 PRINT"Encounter Generator is the obnoxious sort of program"
  189. 520 PRINT"that refuses to do very much, even when you beg and"
  190. 530 PRINT"plead. The basic idea is that you enter the name of"
  191. 540 PRINT"a well known AD&Dv1 monster, and it spits out various"
  192. 550 PRINT"bits of information, incuding hit points per creature,"
  193. 560 PRINT"experience yield, and most important, treasure."
  194. 570 PRINT
  195. 580 PRINT"To get a list of monsters the program recognizes,"
  196. 590 PRINT"type 'list' at the 'Monster' prompt. To exit out"
  197. 591 PRINT"of the program, type 'end'. To get more information"
  198. 592 PRINT"about this program, type 'more help'. To generate"
  199. 593 PRINT"treasure, type '$' followed by the treasure types to be"
  200. 594 PRINT"generated (in lower case, i.e. '$hst' for TT's H,S,&T)."
  201. 595 PRINT
  202. 596 PRINT"   * * *  Have A Nice Day  * * *"
  203. 597 PRINT:PRINT"  ...and don't forget...   Kittybalz!"
  204. 598 GOTO 40
  205. 600 REM List
  206. 605 PRINT
  207. 610 OPEN "i",1,"mfile.a"
  208. 615 Z1=0
  209. 620 INPUT#1,N$
  210. 630 INPUT#1,Z$,Z$,Z$,Z$,Z$,Z$,Z$,Z$
  211. 640 PRINT N$
  212. 650 IF EOF(1)=-1 GOTO 690
  213. 655 Z1=Z1+1
  214. 656 IF Z1 MOD 20 <> 0 THEN GOTO 620
  215. 660 PRINT:INPUT"--- More --- ",ZZ$
  216. 665 PRINT
  217. 670 GOTO 620
  218. 690 CLOSE
  219. 695 GOTO 40
  220. 700 REM std range interpreter routine
  221. 710 Z1=INSTR(Z8$,"d")
  222. 720 IF Z1<>1 GOTO 740
  223. 730 Z5=1:GOTO 750
  224. 740 Z5=VAL(LEFT$(Z8$,Z1-1))
  225. 750 Z2=INSTR(Z8$,"+")
  226. 755 Z3=INSTR(Z8$,"-")
  227. 760 Z4=Z2+Z3
  228. 765 IF Z4<>0 GOTO 784
  229. 780 Z7=0:Z6=VAL(RIGHT$(Z8$,LEN(Z8$)-Z1))
  230. 782 GOTO 795
  231. 784 Z6=VAL(MID$(Z8$,Z1+1,Z4-Z1-1))
  232. 786 Z7=VAL(RIGHT$(Z8$,LEN(Z8$)-Z4))
  233. 790 IF MID$(Z8$,Z4,1)="-" THEN Z7=-Z7
  234. 795 RETURN
  235. 800 REM Standard Randomizing Routine
  236. 825 Z8=0
  237. 830 FOR Z4=1 TO Z1
  238. 835 Z5=INT(RND*Z2)+1
  239. 840 Z8=Z8+Z5
  240. 845 NEXT Z4
  241. 850 Z8=Z8+Z3
  242. 860 RETURN
  243. 900 REM Any MorM Routine
  244. 910 FOR XX=1 TO EX(11)
  245. 915 R=INT(100*RND(1))+1
  246. 920 Y=8
  247. 925 IF R>20 THEN Y=9
  248. 930 IF R>35 THEN Y=10
  249. 935 IF R>40 THEN Y=11
  250. 940 IF R>45 THEN Y=12
  251. 945 IF R>60 THEN Y=13
  252. 950 IF R>75 THEN Y=14
  253. 955 IF R>86 THEN Y=15
  254. 960 IF EX(12)=0 GOTO 985
  255. 962 OK=1
  256. 965 FOR Z=1 TO EX(12)
  257. 970 IF EX(Z)=Y THEN OK=0
  258. 975 NEXT Z
  259. 980 IF OK=0 THEN GOTO 915
  260. 985 T(Y)=T(Y)+1
  261. 990 NEXT XX
  262. 995 RETURN
  263. 1000 REM More Help
  264. 1002 PRINT
  265. 1003 PRINT"Oh boy....
  266. 1004 PRINT"This is where the programer gets to pontificate"
  267. 1006 PRINT"about life, the multiverse, and liposuction."
  268. 1008 PRINT
  269. 1010 PRINT"MEG (Monster Encounter Generator, i.e. this"
  270. 1012 PRINT"program) has many minor foibles which you may"
  271. 1014 PRINT"or may not want to be made aware of. The first"
  272. 1016 PRINT"is that it won't help you role-play, although"
  273. 1018 PRINT"for you roll-players out there, this might not"
  274. 1020 PRINT"be viewed as problem (``Role-playing? What's he"
  275. 1021 PRINT"talking about?'').
  276. 1022 PRINT""
  277. 1024 PRINT"The program relies on a monster file, 'mfile.a',"
  278. 1026 PRINT"which you may add to, change, or whatever. Each"
  279. 1028 PRINT"monster takes nine lines of the file: name, ref,"
  280. 1030 PRINT"# appearing, treasure type, thaco, armor class,"
  281. 1032 PRINT"damage/attack, hitpoint range, experience formula."
  282. 1034 PRINT"This file should have no blank lines."
  283. 1036 PRINT:INPUT"",ZZ$
  284. 1038 PRINT"Where large groups of monsters are concerned, MEG"
  285. 1040 PRINT"does not account for high hit-die leaders. It won't"
  286. 1042 PRINT"figure out the treasure of individuals in a group."
  287. 1044 PRINT"Nor is it flexible enough to account for monsters"
  288. 1046 PRINT"with multiple hit dice (i.e., Whipweed from Fiend"
  289. 1048 PRINT"Folio)."
  290. 1050 PRINT
  291. 1052 PRINT"Because the output often has a tendancy to scroll"
  292. 1054 PRINT"off the screen, one of the best ways to use MEG is"
  293. 1056 PRINT"to send its output to a file (gwbasic meg > file)."
  294. 1058 PRINT"Also, remember that your input at the 'Monster'"
  295. 1060 PRINT"prompt is case-sensitive."
  296. 1062 PRINT""
  297. 1064 PRINT"Feel free to edit both MEG and mfile.a as you see"
  298. 1066 PRINT"fit. And if you decide to do any substantial"
  299. 1068 PRINT"upgrading, please email me a copy of the revised"
  300. 1070 PRINT"work. MEG is shareware, so don't even try to send"
  301. 1072 PRINT"me money, or I'll sneak into your house on a"
  302. 1074 PRINT"moonless night and do evil things to your cat."
  303. 1078 PRINT:PRINT"               *   Meow?!   *"
  304. 1095 GOTO 40
  305. 1100 REM load d(x,y,z)
  306. 1110 FOR X=1 TO 26
  307. 1115 FOR Y=1 TO 7
  308. 1120 FOR Z=1 TO 3
  309. 1130 READ D(X,Y,Z)
  310. 1140 NEXT Z
  311. 1145 NEXT Y
  312. 1150 NEXT X
  313. 1155 REM load g(x,y)
  314. 1160 FOR B=1 TO 6
  315. 1165 READ G(B,1):READ G(B,2)
  316. 1168 NEXT B
  317. 1169 REM load j(x,y)
  318. 1170 FOR C=1 TO 7
  319. 1172 FOR E=1 TO 4
  320. 1174 READ J(C,E)
  321. 1176 NEXT E
  322. 1178 NEXT C
  323. 1180 REM load mp(x)
  324. 1182 FOR X=1 TO 26
  325. 1184 READ MP(X)
  326. 1186 NEXT X
  327. 1190 RETURN
  328. 1200 REM Treasure Type Routine
  329. 1205 PRINT
  330. 1206 IF TT$<>"0" GOTO 1210
  331. 1207 PRINT:RETURN
  332. 1210 FOR ZZ=1 TO 16
  333. 1211 T(ZZ)=0
  334. 1212 NEXT ZZ
  335. 1215 L=LEN(TT$)
  336. 1220 FOR Q=1 TO L
  337. 1225 X=ASC(MID$(TT$,Q,1))-96
  338. 1230 FOR Y=1 TO 7
  339. 1240 R=INT(100*RND(1))+1
  340. 1250 IF R>D(X,Y,1) GOTO 1318
  341. 1255 N2=0
  342. 1260 FOR A=1 TO D(X,Y,2)
  343. 1270 N1=INT(D(X,Y,3)*RND(1))+1
  344. 1280 N2=N2+N1
  345. 1290 NEXT A
  346. 1300 IF Y<5 AND (X<10 OR X>14) THEN N2=N2*1000
  347. 1310 IF Y=5 AND (X<10 OR X>14) THEN N2=N2*100
  348. 1315 T(Y)=T(Y)+N2
  349. 1318 NEXT Y
  350. 1320 REM Maps or Magic?
  351. 1322 R=INT(100*RND(1))+1
  352. 1324 IF R>MP(X) GOTO 1395
  353. 1326 IF X<>1 GOTO 1330
  354. 1327 EX(11)=3:EX(12)=0:GOSUB 900
  355. 1329 GOTO 1395
  356. 1330 IF X<>2 GOTO 1334
  357. 1331 EX(11)=1:EX(12)=5:EX(1)=1:EX(2)=2:EX(3)=3
  358. 1332 EX(4)=4:EX(5)=5:GOSUB 900
  359. 1333 GOTO 1395 
  360. 1334 IF X<>3 GOTO 1338
  361. 1335 EX(11)=2:EX(12)=0:GOSUB 900
  362. 1337 GOTO 1395
  363. 1338 IF X<>4 GOTO 1342 
  364. 1339 EX(11)=2:EX(12)=0:GOSUB 900
  365. 1340 T(8)=T(8)+1
  366. 1341 GOTO 1395
  367. 1342 IF X<>5 GOTO 1346
  368. 1343 EX(11)=3:EX(12)=0:GOSUB 900
  369. 1344 T(9)=T(9)+1
  370. 1345 GOTO 1395
  371. 1346 IF X<>6 GOTO 1350
  372. 1347 EX(11)=3:EX(12)=2:EX(1)=14:EX(2)=15:GOSUB 900
  373. 1348 T(8)=T(8)+1:T(9)=T(9)+1
  374. 1349 GOTO 1395 
  375. 1350 IF X<>7 GOTO 1354
  376. 1351 EX(11)=4:EX(12)=0:GOSUB 900
  377. 1352 T(9)=T(9)+1
  378. 1353 GOTO 1395
  379. 1354 IF X<>8 GOTO 1358 
  380. 1355 EX(11)=4:EX(12)=0:GOSUB 900
  381. 1356 T(8)=T(8)+1:T(9)=T(9)+1
  382. 1357 GOTO 1395
  383. 1358 IF X<>9 GOTO 1362
  384. 1359 EX(11)=1:EX(12)=0:GOSUB 900
  385. 1361 GOTO 1395
  386. 1362 IF X<>19 GOTO 1366
  387. 1363 T(8)=T(8)+(INT(4*RND(1))+1)+(INT(4*RND(1))+1)
  388. 1365 GOTO 1395 
  389. 1366 IF X<>20 GOTO 1370
  390. 1367 T(9)=T(9)+INT(4*RND(1))+1
  391. 1369 GOTO 1395
  392. 1370 IF X<>21 GOTO 1374 
  393. 1371 T(10)=T(10)+1:T(11)=T(11)+1:T(12)=T(12)+1
  394. 1372 T(13)=T(13)+1:T(14)=T(14)+1:T(15)=T(15)+1
  395. 1373 GOTO 1395
  396. 1374 IF X<>22 GOTO 1378
  397. 1375 T(10)=T(10)+2:T(11)=T(11)+2:T(12)=T(12)+2
  398. 1376 T(13)=T(13)+2:T(14)=T(14)+2:T(15)=T(15)+2
  399. 1377 GOTO 1395
  400. 1378 IF X<>23 GOTO 1382
  401. 1379 T(16)=T(16)+1
  402. 1381 GOTO 1395 
  403. 1382 IF X<>24 GOTO 1386
  404. 1383 T(12)=T(12)+1
  405. 1384 T(8)=T(8)+1
  406. 1385 GOTO 1395
  407. 1386 REM TT=Z
  408. 1387 EX(11)=3:EX(12)=0:GOSUB 900
  409. 1395 NEXT Q
  410. 1400 PRINT"Treasure..."
  411. 1410 PRINT
  412. 1418 IF T(1)=0 GOTO 1428
  413. 1420 PRINT "copper:";T(1)
  414. 1428 IF T(2)=0 GOTO 1438
  415. 1430 PRINT "silver:";T(2)
  416. 1438 IF T(3)=0 GOTO 1448
  417. 1440 PRINT "electrum:";T(3)
  418. 1448 IF T(4)=0 GOTO 1458
  419. 1450 PRINT "gold:";T(4)
  420. 1458 IF T(5)=0 GOTO 1468
  421. 1460 PRINT "platinum:";T(5)
  422. 1468 IF T(6)=0 GOTO 1478
  423. 1470 PRINT "gems:";T(6)
  424. 1478 IF T(7)=0 GOTO 1487
  425. 1480 PRINT "jewelry:";T(7)
  426. 1487 N2=0:N4=0
  427. 1488 IF T(6)=0 GOTO 1598
  428. 1490 PRINT
  429. 1500 PRINT"gem values: ";
  430. 1505 N2=0
  431. 1510 FOR F=1 TO T(6)
  432. 1520 R1=INT(100*RND(1))+1
  433. 1530 FOR H=1 TO 6
  434. 1540 IF R1>G(H,1) THEN N1=G(H,2)
  435. 1550 NEXT H
  436. 1555 IF POS(0)<55 GOTO 1560
  437. 1556 PRINT:PRINT SPACE$(12);
  438. 1560 PRINT N1;
  439. 1570 N2=N2+N1
  440. 1580 NEXT F
  441. 1590 PRINT"=";N2
  442. 1598 IF T(7)=0 GOTO 1700
  443. 1600 PRINT:PRINT"jewelry values: ";
  444. 1610 FOR F=1 TO T(7)
  445. 1620 R1=INT(100*RND(1))+1
  446. 1630 FOR H=1 TO 7
  447. 1640 IF R1>J(H,1) THEN I=H
  448. 1650 NEXT H
  449. 1652 N3=0
  450. 1655 FOR K=1 TO J(I,2)
  451. 1660 N1=INT(J(I,3)*RND(1))+1
  452. 1665 N3=N3+N1
  453. 1670 NEXT K
  454. 1675 N3=N3*J(I,4)
  455. 1677 IF POS(0)<55 GOTO 1680
  456. 1678 PRINT:PRINT SPACE$(16);
  457. 1680 PRINT N3;
  458. 1685 N4=N4+N3
  459. 1688 NEXT F
  460. 1690 PRINT"=";N4
  461. 1700 PRINT:PRINT"grand total value (excluding magic):";
  462. 1710 N5=(T(1)/200)+(T(2)/20)+(T(3)/2)+T(4)+(T(5)*5)+N2+N4
  463. 1720 PRINT N5;"gp"
  464. 1725 IF LEFT$(M$,1)="$" GOTO 1800
  465. 1730 PRINT"XP+XP(TT) ="N5+ZY
  466. 1800 REM Output Magic Item Summary
  467. 1805 ZZ=T(8)+T(9)+T(10)+T(11)+T(12)+T(13)+T(14)+T(15)+T(16)
  468. 1806 IF ZZ=0 GOTO 1990
  469. 1808 PRINT:PRINT"Maps and Magic":PRINT
  470. 1810 IF T(16)=0 GOTO 1814
  471. 1812 PRINT"Maps:"T(16)
  472. 1814 IF T(8)=0 GOTO 1820
  473. 1815 PRINT"Potions:"T(8)
  474. 1820 IF T(9)=0 GOTO 1830
  475. 1825 PRINT"Scrolls:"T(9)
  476. 1830 IF T(10)=0 GOTO 1840
  477. 1835 PRINT"Rings:"T(10)
  478. 1840 IF T(11)=0 GOTO 1850
  479. 1845 PRINT"Rods, Staves, Wands:"T(11)
  480. 1850 IF T(12)=0 GOTO 1860
  481. 1855 PRINT"Miscellaneous Magic:"T(12)
  482. 1860 IF T(13)=0 GOTO 1870
  483. 1865 PRINT"Armor & Shields:"T(13)
  484. 1870 IF T(14)=0 GOTO 1880
  485. 1875 PRINT"Swords:"T(14)
  486. 1880 IF T(15)=0 GOTO 1990
  487. 1885 PRINT"Miscellaneous Weapons:"T(15)
  488. 1990 PRINT
  489. 1995 RETURN
  490. 2000 REM key
  491. 2010 REM for t(x), totals
  492. 2015 REM x; 1=copper, 2=silver, 3=electrum, 4=gold, 5=platinum
  493. 2016 REM x; 6=gems, 7=jewelry, 8=potions, 9=scrolls, 10=rings
  494. 2017 REM x; 11=rsw, 12=miscmag, 13=armor&shields, 14=swords,
  495. 2018 REM x; 15=miscwep, 16=map
  496. 2019 REM
  497. 2020 REM for d(x,y,z), treasure type data
  498. 2025 REM x; 1=treas type "A", 2=B... 26=Z
  499. 2026 REM y; as per t(x) where x=1 to 7
  500. 2027 REM z; 1=%, 2=# of #ds, 3=s of #ds
  501. 2029 REM
  502. 2030 REM for g(x,y), gems
  503. 2032 REM x; 1=ornamental stones... 3=fancy stones... 6=huge gems
  504. 2034 REM y; 1=(>%) for group, 2=base value
  505. 2036 REM
  506. 2040 REM for j(x,y), jewelry
  507. 2042 REM x; jewelry class
  508. 2044 REM y; 1=(>%) for class, 2=#d, 3=ds, 4=multiplier
  509. 2900 REM
  510. 2910 REM
  511. 5000 REM data
  512. 5010 REM for d(x,y,z)
  513. 5020 DATA 25,1,6,30,1,6,35,1,6,40,1,10,25,1,4,60,4,10,50,3,10
  514. 5030 DATA 50,1,8,25,1,6,25,1,4,25,1,3,0,0,0,30,1,8,20,1,4
  515. 5040 DATA 20,1,12,30,1,6,10,1,4,0,0,0,0,0,0,25,1,6,20,1,3
  516. 5050 DATA 10,1,8,15,1,12,15,1,8,50,1,6,0,0,0,30,1,10,25,1,6
  517. 5060 DATA 5,1,10,25,1,12,25,1,6,25,1,8,0,0,0,15,1,12,10,1,8
  518. 5070 DATA 0,0,0,10,1,20,15,1,12,40,1,10,35,1,8,20,3,10,10,1,10
  519. 5080 DATA 0,0,0,0,0,0,0,0,0,50,10,4,50,1,20,30,5,4,25,1,10
  520. 5090 DATA 25,5,6,40,1,100,40,10,4,55,10
  521. 5095 DATA 6,25,5,10,50,1,100,50,10,4
  522. 5100 DATA 0,0,0,0,0,0,0,0,0,0,0,0,30,3,6,55,2,10,50,1,12
  523. 5110 DATA 100,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  524. 5120 DATA 0,0,0,100,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  525. 5130 DATA 0,0,0,0,0,0,100,2,6,0,0,0,0,0,0,0,0,0,0,0,0
  526. 5140 DATA 0,0,0,0,0,0,0,0,0,100,2,4,0,0,0,0,0,0,0,0,0
  527. 5150 DATA 0,0,0,0,0,0,0,0,0,0,0,0,100,1,6,0,0,0,0,0,0
  528. 5160 DATA 25,1,4,20,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  529. 5170 DATA 0,0,0,30,1,6,25,1,2,0,0,0,0,0,0,0,0,0,0,0,0
  530. 5180 DATA 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,1,4,0,0,0
  531. 5185 DATA 0,0,0,0,0,0,0,0,0,40,2,4,50,10,6,55,4,8,45,1,12
  532. 5190 DATA 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  533. 5200 DATA 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  534. 5210 DATA 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,10,8,80,5,6
  535. 5220 DATA 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  536. 5230 DATA 0,0,0,0,0,0,0,0,0,60,5,6,15,1,8,60,10,8,50,5,8
  537. 5240 DATA 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  538. 5250 DATA 0,0,0,0,0,0,0,0,0,70,2,6,0,0,0,0,0,0,0,0,0
  539. 5260 DATA 20,1,3,25,1,4,25,1,4,30,1,4,30,1,6,55,10,6,50,5,6
  540. 5295 REM for g(x,y)
  541. 5300 DATA 0,10,25,50,50,100,70,500,90,1000,99,5000
  542. 5310 DATA 0,1,10,100,10,2,6,100,20,3,6,100,40,5,6,100
  543. 5315 REM for j(x,y)
  544. 5320 DATA 50,1,6,1000,70,2,4,1000,90,2,6,1000
  545. 5330 REM for mp(x)
  546. 5335 DATA 30,10,10,15,25,30,35,15,15,0
  547. 5340 DATA 0,0,0,0,0,0,0,0,40,50
  548. 5345 DATA 70,85,55,60,0,50
  549. 9998 PRINT:PRINT"Hasta la bye bye...."
  550. 9999 KEY ON:PRINT
  551. 10000 END
  552.  
  553.  
  554.  
  555. 4. mfile.a
  556.  
  557. What follows in this section is the ASCII file, mfile.a, which
  558. MEG.BAS reads in order to generate monster encounters. I've
  559. selected monsters from the basic books which I've felt more or
  560. less comfortable with. Being basically the non-killer variety
  561. of GM, there are few devils, demons, monsters with lethal
  562. poison or energy drain or petrification, etc... etc...
  563. Again, you'll need to modify this file to suit your own
  564. campaign. If you have any questions on how to do this after
  565. examining the program, feel free to bug me.
  566.  
  567. One important note here. When you cut out and save this
  568. section as mfile.a, make sure that there are no blank lines
  569. in mfile.a or the program will likely screw things up.
  570.  
  571.  
  572. -----------Cut here, leave no blank lines---------
  573. Aarakocra
  574. FF p8
  575. d10
  576. d
  577. 18
  578. 7
  579. d3 d3 / wep
  580. d8+2
  581. 28+2/hp
  582. Afanc
  583. MM2 p8
  584. d1
  585. 0
  586. 8
  587. 6
  588. 5d4 / 3d4*2
  589. 15d8
  590. 4000+20/hp
  591. Giant Ant
  592. MM1 p7
  593. d100
  594. qqqs
  595. 16
  596. 3
  597. d6
  598. 2d8
  599. 20+2/hp
  600. Lion Ant
  601. MM2 p10
  602. d1
  603. 0+Treasure is Special
  604. 12
  605. 2
  606. 5d4
  607. 8d8
  608. 575+10/hp
  609. Carnivorous Ape
  610. MM1 p7
  611. 2d4
  612. c
  613. 15
  614. 6
  615. d4 d4 d8 +
  616. 5d8
  617. 170+5/hp
  618. Aspis Drone
  619. MM2 p10
  620. 2d10
  621. f
  622. 13
  623. 3/2
  624. d4 d4 / weps
  625. 6d8
  626. 300+6/hp
  627. Atomie
  628. MM2 p11
  629. 30d4
  630. q+M
  631. 20
  632. 4
  633. wep
  634. d4
  635. 40+1/hp
  636. Aurumvorax
  637. MM2 p11
  638. d1
  639. 0+Incidental Treasure
  640. 9
  641. 0
  642. 2d4 +
  643. 12d8
  644. 2700+16/hp
  645. Babbler
  646. FF p13
  647. d4
  648. b
  649. 15
  650. 6
  651. d6 d6 d8
  652. 5d8
  653. 130+5/hp
  654. Baboon
  655. MM1 p8
  656. 10d4
  657. 0
  658. 18
  659. 7
  660. d4
  661. d8+1
  662. 20+2/hp
  663. Baluchitherium
  664. MM1 p8
  665. d3
  666. 0
  667. 8
  668. 5
  669. 5d4 5d4
  670. 14d8
  671. 4200+18/hp
  672. Banderlog
  673. MM2 p13
  674. 4d6
  675. 0+Occasional Jewelry
  676. 15
  677. 6
  678. d4+1
  679. 4d8
  680. 60+4/hp
  681. Fire Bat
  682. MM2 p16
  683. d10+10
  684. i
  685. 16
  686. 8
  687. 2d4
  688. 2d8
  689. 28+2/hp
  690. Cave Bear
  691. MM1 p9
  692. d2
  693. 0
  694. 13
  695. 6
  696. d8 d8 d12
  697. 6d8+6
  698. 475+8/hp
  699. Gorilla Bear
  700. FF p46
  701. d6+1
  702. 0
  703. 15
  704. 4
  705. d8 d8 +
  706. 4d8
  707. 85+4/hp
  708. Northern Bear
  709. MM2 p16
  710. d6
  711. 0
  712. 12
  713. 6
  714. d10 d10 2d6
  715. 8d8+8
  716. 900+12/hp
  717. Giant Fire Beetle
  718. MM1 p9
  719. 3d4
  720. 0
  721. 18
  722. 4
  723. 2d4
  724. d8+2
  725. 20+2/hp
  726. Giant Stag Beetle
  727. MM1 p9-10
  728. 2d6
  729. 0
  730. 13
  731. 3
  732. 4d4 d10 d10
  733. 7d8
  734. 400+8/hp
  735. Bull Behemoth
  736. MM2 p18
  737. d4
  738. 0
  739. 10
  740. 4
  741. 6d4
  742. 10d8+5
  743. 1600+15/hp
  744. Behir
  745. MM2 p18
  746. d2
  747. 0+Treasure is Special
  748. 9
  749. 4
  750. 2d4&d4+1/d6*6
  751. 12d8
  752. 2850+16/hp
  753. Black Pudding
  754. MM1 p10
  755. d4
  756. 0
  757. 10
  758. 6
  759. 3d8
  760. 10d8
  761. 1350+14/hp
  762. Giant Bloodworm
  763. FF p15
  764. d4
  765. q
  766. 13
  767. 4
  768. d8
  769. 6d8
  770. 225+6/hp
  771. Giant Bluebottle
  772. MM2 p65
  773. d10
  774. 0
  775. 16
  776. 6
  777. d8
  778. 3d8
  779. 35+3/hp
  780. Giant Boar
  781. MM1 p11
  782. 2d4
  783. 0
  784. 13
  785. 6
  786. 3d6
  787. 7d8
  788. 225+8/hp
  789. Bonesnapper
  790. FF p15
  791. d3
  792. c
  793. 15
  794. 4
  795. d8 d4
  796. 4d8
  797. 60+4/hp
  798. Buffalo
  799. MM1 p11
  800. 4d6
  801. 0
  802. 15
  803. 7
  804. d8 d8
  805. 5d8
  806. 350+8/hp
  807. Bugbear
  808. MM1 p12
  809. 6d6
  810. b+JKLM
  811. 16
  812. 5
  813. 2d4 / wep
  814. 3d8+1
  815. 135+4/hp
  816. Bullywug
  817. FF p16
  818. 10d8
  819. jkmqqqqq
  820. 19
  821. 6
  822. d2*2 d4+1/wep
  823. d8
  824. 18+1/hp
  825. Giant Bumblebee
  826. MM2 p17
  827. d1
  828. 0
  829. 13
  830. 5
  831. d6 + Poison
  832. 6d8+4
  833. 400+8/hp
  834. Bunyip
  835. FF p17
  836. d1
  837. 0
  838. 15
  839. 10
  840. d6
  841. 5d8
  842. 90+5/hp
  843. Centaur
  844. MM1 p14
  845. 4d6
  846. dit+MQ
  847. 15
  848. 5
  849. d6 d6
  850. 4d8
  851. 85+4/hp
  852. Huge Centipede
  853. MM2 p24
  854. 5d6
  855. 0
  856. 20
  857. 9
  858. ---
  859. d1
  860. 30+1/hp
  861. Cheetah
  862. MM2 p25
  863. d4
  864. 0
  865. 16
  866. 5
  867. d2 d2 2d4
  868. 3d8
  869. 65+3/hp
  870. Clubnek
  871. FF p19
  872. 2d4
  873. 0
  874. 16
  875. 8
  876. d6 d6 d8
  877. 2d8
  878. 20+2/hp
  879. Cooshee
  880. MM2 p26
  881. d8
  882. 0
  883. 16
  884. 5
  885. d6+4
  886. 3d8+3
  887. 110+4/hp
  888. Giant Crab
  889. MM1 p15
  890. 2d6
  891. 0
  892. 16
  893. 3
  894. 2d4 2d4
  895. 3d8
  896. 35+3/hp
  897. Giant Crane
  898. MM2 p26
  899. d20
  900. 0
  901. 16
  902. 5
  903. d10
  904. 3d8
  905. 35+3/hp
  906. Giant Crayfish
  907. MM1 p15
  908. d4
  909. 0
  910. 15
  911. 4
  912. 2d6 2d6
  913. 4d8+4
  914. 90+5/hp
  915. Crimson Death
  916. MM2 p32
  917. d1
  918. z
  919. 9
  920. 0/4
  921. 3d10
  922. 13d8
  923. 7050+18/hp
  924. Crocodile
  925. MM1 p15
  926. 3d8
  927. 0
  928. 16
  929. 5
  930. 2d4 d12
  931. 3d8
  932. 60+4/hp
  933. Giant Crocodile
  934. MM1 p15
  935. 2d6
  936. 0
  937. 13
  938. 4
  939. 3d6 2d10
  940. 7d8
  941. 400+8/hp
  942. Giant Cyclops
  943. Guildsman #3 p90
  944. d4
  945. a
  946. 8
  947. 2
  948. 2d8 2d8
  949. 14d8
  950. 5200+18/hp
  951. Cyclopskin
  952. MM2 p27
  953. d8
  954. c
  955. 15
  956. 3
  957. wep+2
  958. 5d8
  959. 90+5/hp
  960. Dakon
  961. FF p22
  962. 6d10
  963. e
  964. 18
  965. 5
  966. d10 d10
  967. d8+1
  968. 20+2/hp
  969. Death Knight
  970. FF p23
  971. d1
  972. 0
  973. 12
  974. 0
  975. wep
  976. 9d10
  977. 3700+16/hp
  978. Blink Dog
  979. MM1 p10
  980. 4d4
  981. c
  982. 15
  983. 5
  984. d6
  985. 4d8
  986. 170+5/hp
  987. Death Dog
  988. FF p23
  989. 5d10
  990. 0
  991. 16
  992. 7
  993. d10 d10
  994. 2d8+1
  995. 105+3/hp
  996. War Dog
  997. MM1 p29
  998. d10
  999. 0
  1000. 16
  1001. 6
  1002. 2d4
  1003. 2d8+2
  1004. 35+3/hp
  1005. Wild Dog
  1006. MM1 p29
  1007. 4d4
  1008. 0
  1009. 18
  1010. 7
  1011. d4
  1012. d8+1
  1013. 20+2/hp
  1014. Doombat
  1015. FF p27
  1016. d8
  1017. 0
  1018. 13
  1019. 4
  1020. d6 d4
  1021. 6d8+3
  1022. 400+7/hp
  1023. Doppleganger
  1024. MM1 p29
  1025. 3d4
  1026. e
  1027. 15
  1028. 5
  1029. d12
  1030. 4d8
  1031. 330+4/hp
  1032. Dragon Horse
  1033. MM2 p59
  1034. d1
  1035. 0
  1036. 12
  1037. 0
  1038. d8 d8
  1039. 8d8
  1040. 1275+10/hp
  1041. Dragon Turtle
  1042. MM1 p35
  1043. d1
  1044. brstv
  1045. 8
  1046. 0
  1047. 2d6 2d6 4d8
  1048. 14d8
  1049. 7300+18/hp
  1050. Dragonnel
  1051. MM2 p60
  1052. d4
  1053. 0
  1054. 12
  1055. 3
  1056. d6 d6 4d4
  1057. 8d8+4
  1058. 600+12/hp
  1059. Dustdigger
  1060. MM2 p61
  1061. d20
  1062. 0
  1063. 15
  1064. 4
  1065. d8+AC
  1066. 4d8
  1067. 165+4/hp
  1068. Giant Eagle
  1069. MM1 p37
  1070. d20
  1071. q
  1072. 15
  1073. 7
  1074. d6 d6 2d6
  1075. 4d8
  1076. 150+4/hp
  1077. Giant Eel
  1078. MM1 p36
  1079. d4
  1080. 0
  1081. 15
  1082. 6
  1083. 3d6
  1084. 5d8
  1085. 49+1/hp
  1086. Ettin
  1087. MM1 p40
  1088. d4
  1089. cy+O
  1090. 10
  1091. 3
  1092. 2d8 3d6
  1093. 10d8
  1094. 1950+14/hp
  1095. Large Falcon
  1096. MM2 p64
  1097. d2
  1098. 0+5% Chance of Shiny Object in Nest
  1099. 19
  1100. 5
  1101. d2 d2 1
  1102. d8
  1103. 25+1/hp
  1104. Firenewt
  1105. FF p36
  1106. 10d10
  1107. f+KM
  1108. 16
  1109. 5
  1110. wep
  1111. 2d8+2
  1112. 90+3/hp
  1113. Firetoad
  1114. FF p38
  1115. d6
  1116. c
  1117. 15
  1118. 10
  1119. hp-dmg
  1120. 4d8+1
  1121. 165+5/hp
  1122. Flind
  1123. FF p39
  1124. 2d12
  1125. a
  1126. 15
  1127. 5
  1128. d6 / d4
  1129. 2d8+3
  1130. 35+3/hp
  1131. Forlarren
  1132. FF p39
  1133. d1
  1134. 0
  1135. 16
  1136. 2
  1137. d4 d4
  1138. 3d8
  1139. 90+3/hp
  1140. Formian Worker
  1141. MM2 p66
  1142. 10d4
  1143. 0
  1144. 18
  1145. 3
  1146. d4
  1147. d8+1
  1148. 20+2/hp
  1149. Giant Frog
  1150. MM1 p41
  1151. 5d8
  1152. 0
  1153. 17
  1154. 7
  1155. d6
  1156. 2d8
  1157. 45+3/hp
  1158. Froghemoth
  1159. MM2 p67
  1160. d1
  1161. 0
  1162. 7
  1163. 2/4/6
  1164. 5d10/(d4+4)*4
  1165. 16d8
  1166. 8100+20/hp
  1167. Frost Man
  1168. FF p40
  1169. d1
  1170. c
  1171. 15
  1172. 5
  1173. wep
  1174. 4d8
  1175. 125+4/hp
  1176. Giant Gar
  1177. MM1 p42
  1178. d6
  1179. 0
  1180. 12
  1181. 3
  1182. 5d4
  1183. 8d8
  1184. 550+10/hp
  1185. Gargoyle
  1186. MM1 p42
  1187. 2d8
  1188. c+10*M
  1189. 15
  1190. 5
  1191. d3 d3 d6 d4
  1192. 4d8+4
  1193. 165+5/hp
  1194. Gelatinous Cube
  1195. MM1 p43
  1196. d1
  1197. jklmnq
  1198. 15
  1199. 8
  1200. 2d4
  1201. 4d8
  1202. 150+4/hp
  1203. Cliff Giant
  1204. Guildsman #3 p88
  1205. d6
  1206. e
  1207. 9
  1208. 3
  1209. 6d6
  1210. 12d8
  1211. 2850+16/hp
  1212. Fire Giant
  1213. MM1 p44
  1214. d8
  1215. e
  1216. 9
  1217. 3
  1218. 5d6 / 2d10
  1219. 11d8+4
  1220. 2700+16/hp
  1221. Fog Giant
  1222. FF p42
  1223. d4
  1224. e
  1225. 8
  1226. 1
  1227. 4d6
  1228. 14d8
  1229. 3950+18/hp
  1230. Formorian Giant
  1231. MM2 p68
  1232. d4
  1233. dqqqqqqqqqq
  1234. 9
  1235. 3
  1236. 4d8
  1237. 13d8+2
  1238. 2750+18/hp
  1239. Frost Giant
  1240. MM1 p44
  1241. d8
  1242. e
  1243. 10
  1244. 4
  1245. 4d6 / 2d10
  1246. 10d8+3
  1247. 2250+14/hp
  1248. Hill Giant
  1249. MM1 p45
  1250. d10
  1251. d
  1252. 12
  1253. 4
  1254. 2d8
  1255. 8d8+2
  1256. 1400+12/hp
  1257. Mountain Giant
  1258. FF p42
  1259. d4
  1260. e
  1261. 9
  1262. 4
  1263. 4d10
  1264. 12d8
  1265. 2850+16/hp
  1266. Stone Giant
  1267. MM1 p45
  1268. d8
  1269. d
  1270. 12
  1271. 0
  1272. 3d6 / 3d10
  1273. 9d8+2
  1274. 1800+14/hp
  1275. Gibbering Mouther
  1276. MM2 p69
  1277. d1
  1278. q
  1279. 15
  1280. 1
  1281. 1*6 +
  1282. 4d8+3
  1283. 210+5/hp
  1284. Gibberling
  1285. FF p43
  1286. 40d10
  1287. d
  1288. 18
  1289. 10
  1290. d8
  1291. d8
  1292. 14+1/hp
  1293. Gnoll
  1294. MM1 p46
  1295. 20d10
  1296. dqqqqqs+LM
  1297. 16
  1298. 5
  1299. 2d4 or wep
  1300. 2d8
  1301. 28+2/hp
  1302. Goblin
  1303. MM1 p47
  1304. 40d10
  1305. c+K
  1306. 20
  1307. 6
  1308. d6 / wep
  1309. d6+1
  1310. 10+1/hp
  1311. Gorilla
  1312. MM1 p7
  1313. d4
  1314. 0
  1315. 15
  1316. 6
  1317. d3 d3 d6 +
  1318. 4d8+1
  1319. 130+5/hp
  1320. Grell
  1321. FF p46
  1322. d1
  1323. 0
  1324. 15
  1325. 4
  1326. d4*10 d6
  1327. 5d8
  1328. 840+5/hp
  1329. Grimlock
  1330. FF p48
  1331. 20d10
  1332. b+KLM
  1333. 16
  1334. 5
  1335. d6 / wep
  1336. 2d8
  1337. 28+2/hp
  1338. Grippli
  1339. MM2 p71
  1340. 5d6
  1341. qqqqi
  1342. 18
  1343. 9
  1344. d4 / wep
  1345. d8+1
  1346. 45+2/hp
  1347. Gryph
  1348. FF p48
  1349. d6
  1350. 0
  1351. 16
  1352. 6
  1353. 2d6
  1354. 3d8
  1355. 50+3/hp
  1356. Hippocampus
  1357. MM1 p51
  1358. 2d4
  1359. 0
  1360. 15
  1361. 5
  1362. d4
  1363. 4d8
  1364. 60+4/hp
  1365. Hippopotamus
  1366. MM1 p52
  1367. 2d6
  1368. 0
  1369. 12
  1370. 6
  1371. 2d6 / 3d6
  1372. 8d8
  1373. 375+6/hp
  1374. Hoar Fox
  1375. FF p50
  1376. d6
  1377. 0+Pelt Worth 100gp
  1378. 16
  1379. 6
  1380. d6 / (2d6)
  1381. 2d8
  1382. 28+2/hp
  1383. Hobgoblin
  1384. MM1 p52
  1385. 20d10
  1386. dqqqqq+J & M
  1387. 18
  1388. 5
  1389. d8 / wep
  1390. d8+1
  1391. 20+2/hp
  1392. Hook Horror
  1393. FF p51
  1394. 2d6
  1395. p
  1396. 15
  1397. 3
  1398. d8 d8
  1399. 5d8
  1400. 90+5/hp
  1401. Giant Hornet
  1402. FF p51
  1403. d1
  1404. 0
  1405. 15
  1406. 2/4
  1407. d4 +
  1408. 5d8
  1409. 165+5/hp
  1410. Hell Hound
  1411. MM1 p51
  1412. 2d4
  1413. c
  1414. 13
  1415. 4
  1416. d10
  1417. 7d8
  1418. 250+8/hp
  1419. Yeth Hound
  1420. MM2 p129
  1421. 4d4
  1422. 0
  1423. 16
  1424. 0
  1425. 2d4
  1426. 3d8+3
  1427. 235+4/hp
  1428. Hyaenodon
  1429. MM1 p54
  1430. 2d4
  1431. 0
  1432. 15
  1433. 7
  1434. 3d4
  1435. 5d8
  1436. 90+5/hp
  1437. Hybsil
  1438. MM2 p76
  1439. 10d6
  1440. i
  1441. 20
  1442. 7
  1443. d4 / wep
  1444. d7
  1445. 22+1/hp
  1446. Hyena
  1447. MM1 p54
  1448. 2d6
  1449. 0
  1450. 16
  1451. 7
  1452. 2d4
  1453. 3d8
  1454. 35+3/hp
  1455. Invisible Stalker
  1456. MM1 p55
  1457. d1
  1458. 0
  1459. 12
  1460. 3/1
  1461. 4d4
  1462. 8d8
  1463. 1090+10/hp
  1464. Jackalwere
  1465. MM1 p56
  1466. d4
  1467. c
  1468. 15
  1469. 4
  1470. 2d4
  1471. 4d8
  1472. 800+4/hp
  1473. Jaguar
  1474. MM1 p56
  1475. d2
  1476. 0
  1477. 15
  1478. 6
  1479. d3 d3 d8 +
  1480. 4d8+1
  1481. 205+5/hp
  1482. Jermlaine
  1483. FF p53
  1484. 12d4
  1485. cqqqqqst+(O+Q)/10
  1486. 20
  1487. 7
  1488. d2 / d4
  1489. d4
  1490. 7+1/hp
  1491. Kech
  1492. MM2 p78
  1493. 2d4
  1494. b
  1495. 15
  1496. 4
  1497. d4+1 d4+1 d6
  1498. 5d8
  1499. 205+5/hp
  1500. Killmoulis
  1501. FF p57
  1502. d3
  1503. k
  1504. 20
  1505. 6
  1506. ---
  1507. d4
  1508. 9+1/hp
  1509. Kobold
  1510. MM1 p57
  1511. 40d10
  1512. oqqqqq+J
  1513. 20
  1514. 7
  1515. d4 / wep
  1516. d4
  1517. 5+1/hp
  1518. Kraken
  1519. MM2 p79
  1520. d1
  1521. grs
  1522. 7
  1523. 5/0
  1524. 2d6*2 2d4*d3+3 5d4
  1525. 20d8
  1526. 16900+30/hp
  1527. Leopard
  1528. MM1 p60
  1529. d2
  1530. 0
  1531. 16
  1532. 6
  1533. d3 d3 d6 +
  1534. 3d8+2
  1535. 150+4/hp
  1536. Leucrotta
  1537. MM1 p60
  1538. d4
  1539. d
  1540. 13
  1541. 4
  1542. 3d6
  1543. 6d8+1
  1544. 475+8/hp
  1545. Mountain Lion
  1546. MM1 p61
  1547. d2
  1548. 0
  1549. 16
  1550. 6
  1551. d3 d3 d6 +
  1552. 3d8+1
  1553. 110+4/hp
  1554. Sea Lion
  1555. MM1 p86
  1556. 3d4
  1557. b
  1558. 13
  1559. 5/3
  1560. d6 d6 2d6
  1561. 6d8
  1562. 150+6/hp
  1563. Spotted Lion
  1564. MM1 p61
  1565. 2d4
  1566. 0
  1567. 13
  1568. 5/6
  1569. d4 d4 d12 +
  1570. 6d8+2
  1571. 300+6/hp
  1572. Fire Lizard
  1573. MM1 p61
  1574. d4
  1575. bqqqqqqqqqqst
  1576. 10
  1577. 3
  1578. d8 d8 2d8
  1579. 10d8
  1580. 1350+14/hp
  1581. Giant Lizard
  1582. MM1 p61
  1583. 2d6
  1584. 0
  1585. 16
  1586. 5
  1587. d8
  1588. 3d8+1
  1589. 125+4/hp
  1590. Subterranean Lizard
  1591. MM1 p61-2
  1592. d6
  1593. opqqqqq
  1594. 13
  1595. 5
  1596. 2d6
  1597. 6d8
  1598. 350+6/hp
  1599. Lizard King
  1600. FF p61
  1601. d1
  1602. e
  1603. 12
  1604. 3
  1605. 5d4
  1606. 8d8
  1607. 550+10/hp
  1608. Lizard Man
  1609. MM1 p62
  1610. 10d4
  1611. d
  1612. 16
  1613. 5
  1614. d2 d2 d8
  1615. 2d8+1
  1616. 35+3/hp
  1617. Locathah
  1618. MM1 p62
  1619. 20d10
  1620. a
  1621. 16
  1622. 6
  1623. wep
  1624. 2d8
  1625. 20+2/hp
  1626. Magma Para-Elemental
  1627. MM2 p98
  1628. d1
  1629. 0
  1630. 9
  1631. 3
  1632. 4d6
  1633. 12d8
  1634. 2850+15/hp
  1635. Magman
  1636. MM2 p82
  1637. 2d12
  1638. 0
  1639. 16
  1640. 6
  1641. 3d8 / d8
  1642. 2d8
  1643. 97+2/hp
  1644. Margoyle
  1645. MM2 p83
  1646. 2d4
  1647. c+Q
  1648. 13
  1649. 2
  1650. d6 d6 2d4 2d4
  1651. 6d8
  1652. 350+6/hp
  1653. Fire Mephit
  1654. FF p64
  1655. d1
  1656. 0+2d6 P.P.
  1657. 16
  1658. 5
  1659. (d3+1)*2
  1660. 3d8+1
  1661. 150+4/hp
  1662. Lava Mephit
  1663. FF p64
  1664. d1
  1665. 0+d10 P.P.
  1666. 16
  1667. 6
  1668. (d8+1)*2
  1669. 3d8
  1670. 105+3/hp
  1671. Smoke Mephit
  1672. FF p65
  1673. d1
  1674. 0+d10 P.P.
  1675. 16
  1676. 4
  1677. d2*2
  1678. 3d8
  1679. 105+3/hp
  1680. Steam Mephit
  1681. FF p65
  1682. d1
  1683. 0+3d6 P.P.
  1684. 16
  1685. 7
  1686. (d4+1)*2
  1687. 3d8+3
  1688. 175+4/hp
  1689. Merman
  1690. MM1 p70
  1691. 20d10
  1692. cr
  1693. 18
  1694. 7
  1695. wep
  1696. d8+1
  1697. 20+2/hp
  1698. Mimic
  1699. MM1 p70
  1700. d1
  1701. 0
  1702. 12
  1703. 7
  1704. 3d4
  1705. 9d8
  1706. 1300+12/hp
  1707. Minotaur
  1708. MM1 p71
  1709. d8
  1710. c
  1711. 13
  1712. 6
  1713. wep & 2d4/d4
  1714. 6d8+3
  1715. 400+8/hp
  1716. Mite
  1717. FF p66
  1718. 6d4
  1719. c
  1720. 20
  1721. 8
  1722. d3
  1723. d7
  1724. 5+1/hp
  1725. Muckdweller
  1726. MM2 p93
  1727. 5d4
  1728. jklmn+Q
  1729. 20
  1730. 6
  1731. d2
  1732. d4
  1733. 7+1/hp
  1734. Mustard Jelly
  1735. MM2 p77
  1736. d1
  1737. 0
  1738. 12
  1739. 4
  1740. 5d4 / 2d4 2d4
  1741. 7d8+14
  1742. 825+18/hp
  1743. Narwhale
  1744. MM2 p95
  1745. d6
  1746. 0
  1747. 13
  1748. 6
  1749. 6d4
  1750. 5d8+5
  1751. 190+6/hp
  1752. Nightmare
  1753. MM1 p74
  1754. d1
  1755. 0
  1756. 13
  1757. -4/-6
  1758. 2d4 (2d4+2)*2
  1759. 6d8+6
  1760. 600+8/hp
  1761. Norker
  1762. FF p68
  1763. 3d10
  1764. e
  1765. 18
  1766. 3
  1767. d3 d6
  1768. d8+2
  1769. 20+2/hp
  1770. Ochre Jelly
  1771. MM1 p75
  1772. d3
  1773. 0
  1774. 13
  1775. 8
  1776. 3d4
  1777. 6d8
  1778. 150+6/hp
  1779. Giant Octopus
  1780. MM1 p75
  1781. d3
  1782. r
  1783. 12
  1784. 7
  1785. 2d4*6 2d6
  1786. 8d8
  1787. 550+10/hp
  1788. Ogre
  1789. MM1 p75
  1790. 2d10
  1791. qbs+M*10
  1792. 15
  1793. 5
  1794. d10 / wep
  1795. 4d8+1
  1796. 90+5/hp
  1797. Ogrillon
  1798. FF p70
  1799. 5d6
  1800. bs+M
  1801. 16
  1802. 6
  1803. d6+1 d6+1
  1804. 2d8
  1805. 28+2/hp
  1806. Domestic Oliphant
  1807. MM2 p96
  1808. d8
  1809. 0
  1810. 10
  1811. 4
  1812. (3d4)*4
  1813. 10d8+5
  1814. 600+12/hp
  1815. Wild Oliphant
  1816. MM2 p96
  1817. d8
  1818. 0
  1819. 12
  1820. 4
  1821. (3d4)*4
  1822. 8d8+4
  1823. 600+12/hp
  1824. Orc
  1825. MM1 p76
  1826. 30d10
  1827. cosqqqqqqqqqq+L
  1828. 19
  1829. 6
  1830. d8 / wep
  1831. d8
  1832. 10+1/hp
  1833. Osquip
  1834. FF p70
  1835. 2d12
  1836. d
  1837. 16
  1838. 7
  1839. 2d6
  1840. 3d+1
  1841. 60+4/hp
  1842. Pech
  1843. MM2 p99
  1844. 5d4
  1845. 0+Gems & Jewelry in Lair
  1846. 15
  1847. 3
  1848. wep+3
  1849. 4d8
  1850. 240+4/hp
  1851. Pegasus
  1852. MM1 p78
  1853. d10
  1854. 0
  1855. 15
  1856. 6
  1857. d8 d8 d3
  1858. 4d8
  1859. 60+4/hp
  1860. Pernicon
  1861. FF p72
  1862. 4d10
  1863. 0+Treasure is Special
  1864. 20
  1865. 3
  1866. d3
  1867. d4
  1868. 7+1/hp
  1869. Giant Pike
  1870. MM1 p78
  1871. d8
  1872. 0
  1873. 15
  1874. 5
  1875. 4d4
  1876. 4d8
  1877. 85+4/hp
  1878. Pteranodon
  1879. MM1 p27
  1880. 3d6
  1881. 0
  1882. 16
  1883. 7
  1884. 2d4
  1885. 3d8+3
  1886. 85+4/hp
  1887. Purple Worm
  1888. MM1 p80
  1889. d2
  1890. bqqqqqx
  1891. 8
  1892. 6
  1893. 2d12 2d4
  1894. 15d8
  1895. 4900+20/hp
  1896. Quaggoth
  1897. FF p74
  1898. 2d12
  1899. a
  1900. 18
  1901. 6
  1902. d4 d4 / wep
  1903. d8+2
  1904. 28+2/hp
  1905. Quickling
  1906. MM2 p103
  1907. 4d4
  1908. opqx
  1909. 18
  1910. -3
  1911. d6 d6 d6
  1912. d12
  1913. 200+3/hp
  1914. Quipper
  1915. FF p74
  1916. 5d10
  1917. 0
  1918. 20
  1919. 8
  1920. d2
  1921. d4
  1922. 5+1/hp
  1923. Qullan
  1924. FF p74
  1925. d6
  1926. 0+Treasure is Special
  1927. 16
  1928. 10
  1929. 2d4+3
  1930. 2d8
  1931. 73+2/hp
  1932. Giant Ram
  1933. MM1 p81
  1934. 2d4
  1935. 0
  1936. 15
  1937. 6
  1938. 2d6
  1939. 4d8
  1940. 85+4/hp
  1941. Giant Rat
  1942. MM1 p81
  1943. 5d10
  1944. c
  1945. 20
  1946. 7
  1947. d3
  1948. d4
  1949. 7+1/hp
  1950. Giant Raven
  1951. MM2 p105
  1952. 4d4
  1953. 0+1 in 6 Chance of Small Gem in Nest
  1954. 16
  1955. 4
  1956. d4+2
  1957. 3d8+2
  1958. 60+4/hp
  1959. Woolly Rhinoceros
  1960. MM1 p82
  1961. d4
  1962. 0
  1963. 10
  1964. 5
  1965. 2d6
  1966. 10d8
  1967. 1350+14/hp
  1968. Roc
  1969. MM1 p82
  1970. d2
  1971. c
  1972. 7
  1973. 4
  1974. 3d6*2 / 4d6
  1975. 18d8
  1976. 5000+25/hp
  1977. Rockworm
  1978. FF p87
  1979. d2
  1980. 0+10-60 Gems (base 10gp) in Group
  1981. 16
  1982. 2
  1983. 4d8 / 2d6
  1984. 3d8
  1985. 65+3/hp
  1986. Rothe
  1987. FF p76
  1988. 2d10
  1989. 0
  1990. 16
  1991. 7
  1992. d3 d3 d8
  1993. 2d8
  1994. 20+2/hp
  1995. Sahuagin
  1996. MM1 p84
  1997. 20d4
  1998. iopqqqqqqqqqqxy+N
  1999. 16
  2000. 5
  2001. wep
  2002. 2d8+2
  2003. 35+3/hp
  2004. Salamander
  2005. MM1 p85
  2006. d4+1
  2007. f
  2008. 12
  2009. 5/3
  2010. wep 2d6
  2011. 7d8+7
  2012. 825+10/hp
  2013. Sandling
  2014. MM2 p106
  2015. d1
  2016. 0
  2017. 15
  2018. 3
  2019. 2d8
  2020. 4d8
  2021. 85+4/hp
  2022. Giant Scorpion
  2023. MM1 p85
  2024. d4
  2025. d
  2026. 13
  2027. 3
  2028. d10 d10 d4
  2029. 5d8+5
  2030. 650+6/hp
  2031. Freshwater Scrag
  2032. MM2 p121-2
  2033. d6
  2034. c
  2035. 13
  2036. 3
  2037. d4+1 d4+1 3d4
  2038. 5d8+5
  2039. 400+8/hp
  2040. Saltwater Scrag
  2041. MM2 p121-2
  2042. d8
  2043. d
  2044. 13
  2045. 2
  2046. d4 d4 d8+8
  2047. 6d8+12
  2048. 900+12/hp
  2049. Scum Creeper
  2050. MM2 p107
  2051. 2d12
  2052. 0
  2053. 19
  2054. 8
  2055. d1
  2056. 2d4
  2057. 14+1/hp
  2058. Giant Sea Horse
  2059. MM1 p86
  2060. d20
  2061. 0
  2062. 16
  2063. 7
  2064. d4/d4+1/2d4
  2065. 2d8
  2066. 20+4/hp
  2067. Selkie
  2068. MM2 p107
  2069. 6d4+6
  2070. r+Magic(A) in Lair
  2071. 16
  2072. 5
  2073. d6 / wep
  2074. 3d8+3
  2075. 75+4/hp
  2076. Shadow
  2077. MM1 p86
  2078. 2d10
  2079. f
  2080. 16
  2081. 7
  2082. d4+1
  2083. 3d8+3
  2084. 255+4/hp
  2085. Shambler
  2086. MM1 p87
  2087. d3
  2088. btx
  2089. 10
  2090. 0
  2091. 2d8 2d8
  2092. 10d8
  2093. 1800+10/hp
  2094. Skeleton
  2095. MM1 p87
  2096. 3d10
  2097. 0
  2098. 19
  2099. 7
  2100. d6
  2101. d8
  2102. 14+1/hp
  2103. Animal Skeleton
  2104. MM2 p109
  2105. 2d10
  2106. 0
  2107. 20
  2108. 8
  2109. d4
  2110. d7
  2111. 10+1/hp
  2112. Skeleton Elite
  2113. Guildsman #3 p91
  2114. d10
  2115. 0
  2116. 15
  2117. 4
  2118. d8 d8
  2119. 5d8
  2120. 205+5/hp
  2121. Skulk
  2122. FF p80
  2123. d8
  2124. a
  2125. 16
  2126. 7
  2127. wep
  2128. 2d8
  2129. 36+2/hp
  2130. Giant Slug
  2131. MM1 p88
  2132. d1
  2133. 0
  2134. 9
  2135. 8
  2136. d12
  2137. 12d8
  2138. 2000+16/hp
  2139. Fire Snake
  2140. FF p38
  2141. d6
  2142. q
  2143. 16
  2144. 6
  2145. d4
  2146. 2d8
  2147. 73+2/hp
  2148. Snapper-Saw
  2149. MM2 p66
  2150. d2
  2151. 0
  2152. 15
  2153. 4 (stalks) / 7 (leaves) / 9 (bush proper)
  2154. (d4+1)*(d4+2)
  2155. 5d8
  2156. 165+5/hp
  2157. Snow Mole
  2158. Guildsman #3 p92
  2159. d3
  2160. c
  2161. 8
  2162. 1
  2163. 2d10
  2164. 14d8
  2165. 3000+18/hp
  2166. Snyad
  2167. FF p83
  2168. d8
  2169. j
  2170. 20
  2171. -4
  2172. ---
  2173. d7
  2174. 7+1/hp
  2175. Huge Solifugid
  2176. MM2 p112
  2177. d6
  2178. qs
  2179. 13
  2180. 5
  2181. 3d4
  2182. 5d8+5
  2183. 225+6/hp
  2184. Giant Spider
  2185. MM1 p90
  2186. d8
  2187. c
  2188. 15
  2189. 4
  2190. 2d4
  2191. 4d8+4
  2192. 315+5/hp
  2193. Hyper-Spider
  2194. Guildsman #3 p92
  2195. d1
  2196. a
  2197. 7
  2198. 0
  2199. d8*8 3d6
  2200. 18d8
  2201. 6550+25/hp
  2202. Spined Devil
  2203. MM2 p49
  2204. d4+1
  2205. 0
  2206. 16
  2207. 3
  2208. wep / d4 d4
  2209. 3d8+3
  2210. 240+4/hp
  2211. Giant Squid
  2212. MM1 p92
  2213. d1
  2214. a
  2215. 9
  2216. 7/3
  2217. d6*8 5d4
  2218. 12d8
  2219. 2000+16/hp
  2220. Giant Black Squirrel
  2221. MM2 p114
  2222. d12
  2223. 0
  2224. 18
  2225. 6
  2226. d3
  2227. d8+1
  2228. 20+2/hp
  2229. Giant Stag
  2230. MM1 p92
  2231. d2
  2232. 0
  2233. 15
  2234. 7
  2235. 4d4 / d4*2
  2236. 5d8
  2237. 90+5/hp
  2238. Stench Kow
  2239. MM2 p115
  2240. 15d4
  2241. 0
  2242. 16
  2243. 2
  2244. 2d4
  2245. 3d8+3
  2246. 150+4/hp
  2247. Stirge
  2248. MM1 p92
  2249. 3d10
  2250. d
  2251. 15
  2252. 8
  2253. d3
  2254. d8+1
  2255. 36+2/hp
  2256. Stone Guardian
  2257. MM2 p115
  2258. d4
  2259. 0
  2260. 15
  2261. 2
  2262. d8+1 d8+1
  2263. 4d8+4
  2264. 550+8/hp
  2265. Giant Strider
  2266. FF p42
  2267. d6
  2268. 0
  2269. 16
  2270. 4
  2271. d8 / d10
  2272. 2d8
  2273. 73+2/hp
  2274. Stunjelly
  2275. FF p84
  2276. d1
  2277. 0+Treasure is Special
  2278. 15
  2279. 8
  2280. 2d4
  2281. 4d8
  2282. 125+4/hp
  2283. Swordfish
  2284. MM2 p117
  2285. d8
  2286. 0
  2287. 16
  2288. 6
  2289. 3d4
  2290. 2d8+2
  2291. 35+3/hp
  2292. Tabaxi
  2293. FF p86
  2294. 2d4
  2295. 0+5% Chance of Magical Weapon in Group
  2296. 16
  2297. 6
  2298. d3 d3 d3
  2299. 2d8
  2300. 20+2/hp
  2301. Taer
  2302. MM2 p117
  2303. d20+10
  2304. 0+Teeth Horns Stone Idols & 15% Captured Loot (10% Magic)
  2305. 15
  2306. 4
  2307. d6 d4*2 / wep
  2308. 3d8+6
  2309. 150+4/hp
  2310. Tasloi
  2311. MM2 p118
  2312. 10d10
  2313. qqqqq
  2314. 19
  2315. 6
  2316. d3 d3 / wep
  2317. d8
  2318. 10+1/hp
  2319. Giant Soldier Termite
  2320. MM2 p118
  2321. 3d6
  2322. 0
  2323. 16
  2324. 2/8
  2325. d4
  2326. 2d8+2
  2327. 50+3/hp
  2328. Giant Worker Termite
  2329. MM2 p118
  2330. 6d10
  2331. 0
  2332. 18
  2333. 2/10
  2334. d2
  2335. d8+2
  2336. 20+2/hp
  2337. Thessalhydra
  2338. MM2 p119
  2339. d1
  2340. 0
  2341. 9
  2342. 0
  2343. d6*8 d12 d20
  2344. 12d8
  2345. 5800+16/hp
  2346. Thri-kreen
  2347. MM2 p119
  2348. 2d6
  2349. q
  2350. 13
  2351. 5
  2352. d4*4 d4+1 / wep*3
  2353. 6d8+3
  2354. 800+8/hp
  2355. Thunderherder
  2356. MM2 p120
  2357. 10d10
  2358. 0
  2359. 13
  2360. 3
  2361. ---
  2362. 7d8
  2363. 350+8/hp
  2364. Giant Tick
  2365. MM1 p94
  2366. 3d4
  2367. 0
  2368. 16
  2369. 3
  2370. d4
  2371. 3d8
  2372. 105+2/hp
  2373. Sabre-Tooth Tiger
  2374. MM1 p94
  2375. d2
  2376. 0
  2377. 11
  2378. 6
  2379. (d4+1)*2 2d6 +
  2380. 7d8+2
  2381. 550+10/hp
  2382. Titanothere
  2383. MM1 p95
  2384. d12
  2385. 0
  2386. 9
  2387. 6
  2388. 2d8
  2389. 12d8
  2390. 2000+16/hp
  2391. Giant Toad
  2392. MM1 p95
  2393. d12
  2394. 0
  2395. 16
  2396. 6
  2397. 2d4
  2398. 2d8+4
  2399. 50+3/hp
  2400. Triceratops
  2401. MM1 p28
  2402. 2d4
  2403. 0
  2404. 7
  2405. 2/6
  2406. d8 d12 d12
  2407. 16d8
  2408. 4000+20/hp
  2409. Triton
  2410. MM1 p96
  2411. 10d6
  2412. crstx
  2413. 16
  2414. 5/4
  2415. wep
  2416. 3d8
  2417. 105+3/hp
  2418. Troglodyte
  2419. MM1 p97
  2420. 10d10
  2421. a
  2422. 16
  2423. 5
  2424. d3 d3 d4+1
  2425. 2d8
  2426. 36+2/hp
  2427. Troll
  2428. MM1 p97
  2429. d12
  2430. d
  2431. 13
  2432. 4
  2433. d4+4 d4+4 2d6
  2434. 6d8+6
  2435. 525+8/hp
  2436. Giant Troll
  2437. FF p90
  2438. d12
  2439. c
  2440. 12
  2441. 4
  2442. 2d8/(d6+1)*2
  2443. 8d8
  2444. 725+10/hp
  2445. Giant Two-Headed Troll
  2446. FF p90
  2447. d3
  2448. dq
  2449. 10
  2450. 4
  2451. d6 d6 d10 d10
  2452. 10d8
  2453. 1800+14/hp
  2454. Tumblewolves
  2455. Guildsman #3 p93
  2456. d10
  2457. i
  2458. 13
  2459. 5
  2460. d6 d6 d10
  2461. 6d8
  2462. 245+5/hp
  2463. Tunnel Worm
  2464. MM2 p128
  2465. d6
  2466. mnq
  2467. 12
  2468. 4
  2469. 2d8
  2470. 9d8+3
  2471. 1350+14/hp
  2472. Giant Snapping Turtle
  2473. MM1 p97
  2474. d4
  2475. 0
  2476. 10
  2477. 0/5(2)
  2478. 6d4
  2479. 10d8
  2480. 1950+14/hp
  2481. Tyrannosaurus Rex
  2482. MM1 p28
  2483. d2
  2484. 0
  2485. 7
  2486. 5
  2487. d6 d6 5d8
  2488. 18d8
  2489. 6550+25/hp
  2490. Unicorn
  2491. MM1 p98
  2492. d4+1
  2493. x
  2494. 13
  2495. 2
  2496. d6 d6 d12
  2497. 4d8+4
  2498. 400+5/hp
  2499. Black Urchin
  2500. FF p92
  2501. d6
  2502. 0+10d10 G.P. Gem
  2503. 17
  2504. 4
  2505. d6
  2506. d8+1
  2507. 28+2/hp
  2508. Green Urchin
  2509. FF p93
  2510. d4
  2511. 0+40d10 G.P. Gem
  2512. 14
  2513. 3
  2514. d6+1 d6+1
  2515. 2d8+1
  2516. 50+3/hp
  2517. Red Urchin
  2518. FF p93
  2519. d4
  2520. 0+90d10 G.P. Gem
  2521. 13
  2522. 2
  2523. (d4+1)*3
  2524. 3d8+1
  2525. 85+4/hp
  2526. Uropygus
  2527. MM2 p100
  2528. d2
  2529. i
  2530. 15
  2531. 2
  2532. d8 d8 2d4
  2533. 4d8+4
  2534. 170+5/hp
  2535. Vampire
  2536. MM1 p99
  2537. d4
  2538. f
  2539. 12
  2540. 1
  2541. d6+4
  2542. 8d8+3
  2543. 3800+12/hp
  2544. Verme
  2545. MM2 p124
  2546. d1
  2547. 0
  2548. 7
  2549. 3/5
  2550. 7d4
  2551. 18d8+18
  2552. 8550+25/hp
  2553. Vilstrak
  2554. MM2 p124
  2555. 2d10
  2556. c
  2557. 20
  2558. 2
  2559. d4+1 d4+1
  2560. d6
  2561. 7+1/hp
  2562. Vodyanoi
  2563. FF p93
  2564. d3
  2565. g
  2566. 12
  2567. 2
  2568. 3d4 3d4 d10
  2569. 8d8
  2570. 650+10/hp
  2571. Volt
  2572. FF p94
  2573. 2d12
  2574. 0
  2575. 16
  2576. 3
  2577. d4 (2d6)
  2578. 2d8+1
  2579. 50+3/hp
  2580. Giant Vulture
  2581. MM2 p125
  2582. 2d6
  2583. 0
  2584. 16
  2585. 7
  2586. d4
  2587. 2d8+1
  2588. 20+2/hp
  2589. Giant Wasp
  2590. MM1 p99
  2591. d20
  2592. qqqqqqqqqqqqqqqqqqqq
  2593. 15
  2594. 4
  2595. 2d4 d4
  2596. 4d8
  2597. 320+4/hp
  2598. Wemic
  2599. MM2 p126
  2600. 2d8
  2601. b
  2602. 13
  2603. 6
  2604. d4 d4 wep
  2605. 5d8+8
  2606. 200+7/hp
  2607. Witherstench
  2608. FF p95
  2609. 3d4
  2610. b
  2611. 16
  2612. 7
  2613. d6 d6
  2614. 2d8+2
  2615. 65+3/hp
  2616. Winter Wolf
  2617. MM1 p101
  2618. 2d4
  2619. i
  2620. 13
  2621. 5
  2622. 2d4
  2623. 6d8
  2624. 245+5/hp
  2625. Worg
  2626. MM1 p101
  2627. 3d4
  2628. 0
  2629. 15
  2630. 6
  2631. 2d4
  2632. 4d8+4
  2633. 90+5/hp
  2634. Xorn
  2635. MM1 p102
  2636. d4
  2637. opqqqqqxy
  2638. 12
  2639. -2
  2640. d3*3 6d4
  2641. 7d8+7
  2642. 1275+10/hp
  2643. Yeti
  2644. MM1 p103
  2645. d6
  2646. d
  2647. 15
  2648. 6
  2649. d6 d6
  2650. 4d8+4
  2651. 435+5/hp
  2652. Zombie
  2653. MM1 p103
  2654. 3d8
  2655. 0
  2656. 16
  2657. 8
  2658. d8
  2659. 2d8
  2660. 20+2/hp
  2661. Zombie Monster
  2662. MM2 p131
  2663. d6
  2664. 0
  2665. 13
  2666. 6
  2667. 4d4
  2668. 6d8
  2669. 150+6/hp
  2670. ----------cut here, leave no blank lines-------
  2671.  
  2672.  
  2673. 5. LaTeXed Monster Chart
  2674.  
  2675. When using the program, I've often found it rather tiresome
  2676. to keep looking up the names of monsters which it recognizes.
  2677. The following LaTeX document should solve that problem for
  2678. those among you who have access to LaTeX. I can make the
  2679. following document available in PostScript upon request.
  2680.  
  2681.  
  2682. \documentstyle{article}
  2683. \setlength{\oddsidemargin}{-.5in}
  2684. \setlength{\textwidth}{7.5in}
  2685. \setlength{\topmargin}{-1.25in}
  2686. \setlength{\textheight}{10in}
  2687. \begin{document}
  2688. \parindent=30pt
  2689.  
  2690. \title{Monster Chart}
  2691. \author{for MEG.BAS}
  2692. \date{jimv@ucrmath.ucr.edu}
  2693. \maketitle
  2694.  
  2695. {\small
  2696. \begin{center}
  2697. \begin{tabular}{lllll}
  2698.  
  2699. Aarakocra&
  2700. Afanc&
  2701. Giant Ant&
  2702. Lion Ant&
  2703. Carnivorous Ape\\
  2704.  
  2705. Aspis Drone&
  2706. Atomie&
  2707. Aurumvorax&
  2708. Babbler&
  2709. Baboon\\
  2710.  
  2711. Baluchitherium&
  2712. Banderlog&
  2713. Fire Bat&
  2714. Cave Bear&
  2715. Gorilla Bear\\
  2716.  
  2717. Northern Bear&
  2718. Giant Fire Beetle&
  2719. Giant Stag Beetle&
  2720. Bull Behemoth&
  2721. Behir\\
  2722.  
  2723.  
  2724. Black Pudding&
  2725. Giant Bloodworm&
  2726. Giant Bluebottle&
  2727. Giant Boar&
  2728. Bonesnapper\\
  2729.  
  2730. Buffalo&
  2731. Bugbear&
  2732. Bullywug&
  2733. Giant Bumblebee&
  2734. Bunyip\\
  2735.  
  2736. Centaur&
  2737. Huge Centipede&
  2738. Cheetah&
  2739. Clubnek&
  2740. Cooshee\\
  2741.  
  2742. Giant Crab&
  2743. Giant Crane&
  2744. Giant Crayfish&
  2745. Crimson Death&
  2746. Crocodile\\
  2747.  
  2748. Giant Crocodile&
  2749. Giant Cyclops&
  2750. Cyclopskin&
  2751. Dakon&
  2752. Death Knight\\
  2753.  
  2754. Blink Dog&
  2755. Death Dog&
  2756. War Dog&
  2757. Wild Dog&
  2758. Doombat\\
  2759.  
  2760. Doppleganger&
  2761. Dragon Horse&
  2762. Dragon Turtle&
  2763. Dragonnel&
  2764. Dustdigger\\
  2765.  
  2766. Giant Eagle&
  2767. Giant Eel&
  2768. Ettin&
  2769. Large Falcon&
  2770. Firenewt\\
  2771.  
  2772. Firetoad&
  2773. Flind&
  2774. Forlarren&
  2775. Formian Worker&
  2776. Giant Frog\\
  2777.  
  2778. Froghemoth&
  2779. Frost Man&
  2780. Giant Gar&
  2781. Gargoyle&
  2782. Gelatinous Cube\\
  2783.  
  2784. Cliff Giant&
  2785. Fire Giant&
  2786. Fog Giant&
  2787. Formorian Giant&
  2788. Frost Giant\\
  2789.  
  2790. Hill Giant&
  2791. Mountain Giant&
  2792. Stone Giant&
  2793. Gibbering Mouther&
  2794. Gibberling\\
  2795.  
  2796. Gnoll&
  2797. Goblin&
  2798. Gorilla&
  2799. Grell&
  2800. Grimlock\\
  2801.  
  2802. Grippli&
  2803. Gryph&
  2804. Hippocampus&
  2805. Hippopotamus&
  2806. Hoar Fox\\
  2807.  
  2808. Hobgoblin&
  2809. Hook Horror&
  2810. Giant Hornet&
  2811. Hell Hound&
  2812. Yeth Hound\\
  2813.  
  2814. Hyaenodon&
  2815. Hybsil&
  2816. Hyena&
  2817. Invisible Stalker&
  2818. Jackalwere\\
  2819.  
  2820. Jaguar&
  2821. Jermlaine&
  2822. Kech&
  2823. Killmoulis&
  2824. Kobold\\
  2825.  
  2826. Kraken&
  2827. Leopard&
  2828. Leucrotta&
  2829. Mountain Lion&
  2830. Sea Lion\\
  2831.  
  2832. Spotted Lion&
  2833. Fire Lizard&
  2834. Giant Lizard&
  2835. Subterranean Lizard&
  2836. Lizard King\\
  2837.  
  2838. Lizard Man&
  2839. Locathah&
  2840. Magma Para-Elemental&
  2841. Magman&
  2842. Margoyle\\
  2843.  
  2844. Fire Mephit&
  2845. Lava Mephit&
  2846. Smoke Mephit&
  2847. Steam Mephit&
  2848. Merman\\
  2849.  
  2850. Mimic&
  2851. Minotaur&
  2852. Mite&
  2853. Muckdweller&
  2854. Mustard Jelly\\
  2855.  
  2856. Narwhale&
  2857. Nightmare&
  2858. Norker&
  2859. Ochre Jelly&
  2860. Giant Octopus\\
  2861.  
  2862. Ogre&
  2863. Ogrillon&
  2864. Domestic Oliphant&
  2865. Wild Oliphant&
  2866. Orc\\
  2867.  
  2868. Osquip&
  2869. Pech&
  2870. Pegasus&
  2871. Pernicon&
  2872. Giant Pike\\
  2873.  
  2874. Pteranodon&
  2875. Purple Worm&
  2876. Quaggoth&
  2877. Quickling&
  2878. Quipper\\
  2879.  
  2880. Qullan&
  2881. Giant Ram&
  2882. Giant Rat&
  2883. Giant Raven&
  2884. Woolly Rhinoceros\\
  2885.  
  2886. Roc&
  2887. Rockworm&
  2888. Rothe&
  2889. Sahuagin&
  2890. Salamander\\
  2891.  
  2892. Sandling&
  2893. Giant Scorpion&
  2894. Freshwater Scrag&
  2895. Saltwater Scrag&
  2896. Scum Creeper\\
  2897.  
  2898. Giant Sea Horse&
  2899. Selkie&
  2900. Shadow&
  2901. Shambler&
  2902. Skeleton\\
  2903.  
  2904. Animal Skeleton&
  2905. Skeleton Elite&
  2906. Skulk&
  2907. Giant Slug&
  2908. Fire Snake\\
  2909.  
  2910. Snapper-Saw&
  2911. Snow Mole&
  2912. Snyad&
  2913. Huge Solifugid&
  2914. Giant Spider\\
  2915.  
  2916. Hyper-Spider&
  2917. Spined Devil&
  2918. Giant Squid&
  2919. Giant Black Squirrel&
  2920. Giant Stag\\
  2921.  
  2922. Stench Kow&
  2923. Stirge&
  2924. Stone Guardian&
  2925. Giant Strider&
  2926. Stunjelly\\
  2927.  
  2928. Swordfish&
  2929. Tabaxi&
  2930. Taer&
  2931. Tasloi&
  2932. Giant Soldier Termite\\
  2933.  
  2934. Giant Worker Termite&
  2935. Thessalhydra&
  2936. Thri-kreen&
  2937. Thunderherder&
  2938. Giant Tick\\
  2939.  
  2940. Sabre-Tooth Tiger&
  2941. Titanothere&
  2942. Giant Toad&
  2943. Triceratops&
  2944. Triton\\
  2945.  
  2946. Troglodyte&
  2947. Troll&
  2948. Giant Troll&
  2949. Giant Two-Headed Troll&
  2950. Tumblewolves\\
  2951.  
  2952. Tunnel Worm&
  2953. Giant Snapping Turtle&
  2954. Tyrannosaurus Rex&
  2955. Unicorn&
  2956. Black Urchin\\
  2957.  
  2958. Green Urchin&
  2959. Red Urchin&
  2960. Uropygus&
  2961. Vampire&
  2962. Verme\\
  2963.  
  2964. Vilstrak&
  2965. Vodyanoi&
  2966. Volt&
  2967. Giant Vulture&
  2968. Giant Wasp\\
  2969.  
  2970. Wemic&
  2971. Witherstench&
  2972. Winter Wolf&
  2973. Worg&
  2974. Xorn\\
  2975.  
  2976. Yeti&
  2977. Zombie&
  2978. Zombie Monster&
  2979. &\\
  2980.  
  2981. \end{tabular}
  2982. \end{center}}
  2983. \thispagestyle{empty}
  2984. \end{document}
  2985.  
  2986.  
  2987.  
  2988. 6. One Final Word
  2989.  
  2990. Of course, this program is far from professional. For those of you
  2991. looking for something better, I might suggest SSI's first DM's
  2992. Assistant program, which I heard was decent, though it's been off
  2993. the shelves and out of print for many years (no, i don't have a copy).
  2994. Last I heard, however, SSI had an account on Compuserve which you can
  2995. reach by emailing 76711.250@compuserve.com
  2996.  
  2997. One final note. This program and those like it have always had, in my
  2998. mind at least, one common failing. They promote roll-playing rather
  2999. than role-playing, the former being a very easy rut to fall into.
  3000. If you decide to use MEG or any of its kin, please remember, never
  3001. let a monster do the work of an evil genius :-) (yeah, it's a stolen
  3002. quote, but so what)      Til later....
  3003.  
  3004.            _   /|
  3005.            \`o_O'
  3006.              ( )     <---  jimv@ucrmath.ucr.edu
  3007.               U            ucsd!ucrmath!jimv (uucp)
  3008.           Aachk!
  3009.         Phft! Ftp!
  3010.